home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / SEARCH / RUBICON / RUBICON.ZIP / COMPARE.DPR < prev    next >
Text File  |  1996-10-22  |  267b  |  17 lines

  1. program Compare;
  2.  
  3. uses
  4.   Forms,
  5.   rbCompar in 'rbCompar.pas' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   {$IFDEF WIN32}
  11.   Application.Initialize;
  12.   {$ENDIF}
  13.   Application.Title := 'Compare Utility';
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.Run;
  16. end.
  17.